summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/(master-data)/buyer-signature/page.tsx
diff options
context:
space:
mode:
authorjoonhoekim <26rote@gmail.com>2025-12-02 20:04:17 +0900
committerjoonhoekim <26rote@gmail.com>2025-12-02 20:04:17 +0900
commit7bdddbacf8610140c0c9db7ccb09d546203ce380 (patch)
treec59df43eac4c256d54dbea9491e1604535551230 /app/[lng]/evcp/(evcp)/(master-data)/buyer-signature/page.tsx
parent87ab8fa7aa845e3aa56941d9eeaba03f36f4b3d3 (diff)
(김준회) 메뉴명과 화면 내 h태그 일치 시키기, i18n 적용
Diffstat (limited to 'app/[lng]/evcp/(evcp)/(master-data)/buyer-signature/page.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/(master-data)/buyer-signature/page.tsx8
1 files changed, 6 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/(master-data)/buyer-signature/page.tsx b/app/[lng]/evcp/(evcp)/(master-data)/buyer-signature/page.tsx
index fa3a1953..96bf783c 100644
--- a/app/[lng]/evcp/(evcp)/(master-data)/buyer-signature/page.tsx
+++ b/app/[lng]/evcp/(evcp)/(master-data)/buyer-signature/page.tsx
@@ -1,15 +1,19 @@
import { BuyerSignatureUploadForm } from '@/lib/shi-signature/upload-form';
import { SignatureList } from '@/lib/shi-signature/signature-list';
import { getAllSignatures } from '@/lib/shi-signature/buyer-signature';
+import { useTranslation } from "@/i18n"
+
+export default async function BuyerSignaturePage(props: { params: Promise<{ lng: string }> }) {
+ const { lng } = await props.params
+ const { t } = await useTranslation(lng, 'menu')
-export default async function BuyerSignaturePage() {
const signatures = await getAllSignatures();
return (
<div className="container mx-auto py-8 max-w-4xl">
<div className="space-y-8">
<div>
- <h1 className="text-3xl font-bold">구매자 서명 관리</h1>
+ <h1 className="text-3xl font-bold">{t('menu.master_data.buyer_signature')}</h1>
<p className="text-muted-foreground mt-2">
계약서에 자동으로 적용될 삼성중공업 서명을 관리합니다.
</p>